home *** CD-ROM | disk | FTP | other *** search
/ Amiga Developer CD 2.1 / Amiga Developer CD v2.1.iso / Reference / DevCon / Orlando_1993 / Devcon93.4 / CAMD / examples / trans / MakeFile < prev    next >
Encoding:
Makefile  |  1993-01-01  |  622 b   |  25 lines

  1. # Transport control demo for RealTime.library.
  2. # SAS C 6.1 Makefile
  3.  
  4. APP    = trans
  5. SUPPORT = clamp.o quickbevel.o thinbevel.o imagebox.o selectnode.o
  6. CFILES    = $(APP).c $(APP)_tm.c $(APP)_events.c boximage.c digits.c
  7. OFILES    = $(APP).o $(APP)_tm.o $(APP)_events.o boximage.o digits.o $(SUPPORT)
  8. HFILES    = $(APP).h $(APP)_text.h $(APP)_tm.h $(APP)_tm_text.h
  9.  
  10. CFLAGS    = nolink ansi unsignedchars nodebug opt
  11.  
  12. .c.o:
  13.     SC $*.c $(CFLAGS)
  14.  
  15. .a.o:
  16.     SC $*.a nolink
  17.  
  18. all:    $(APP).o $(APP)_tm.o $(APP)
  19.  
  20. boximage.o: boximage.c
  21.     SC $*.c saveds nostkchk $(CFLAGS)
  22.  
  23. $(APP):    $(OFILES) makefile
  24.     SC $(OFILES) ProgramName=$(APP) stripdebug nostdio
  25.